home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 52 / Amiga Format AFCD52 (Issue 136, May 2000).iso / -serious- / programming / c / stormamiga_lib-v45_00d / stormc_v3-examples / special / hello_world_c++ / hello_world_c++-stormamiga.c < prev   
C/C++ Source or Header  |  2000-02-28  |  556b  |  21 lines

  1. /********************************************
  2. **                                         **
  3. **             Hello_World_C++             **
  4. **                                         **
  5. **  Copyright 1996/98 by CyberdyneSystems  **
  6. **                                         **
  7. **        written by Matthias Henze        **
  8. **                                         **
  9. ***************** 18/09/98 *****************/
  10.  
  11. #define STORMAMIGA_NOWB
  12. #include <stormamiga.h>
  13.  
  14. #include <iostream.h>
  15.  
  16. int main (void)
  17. {
  18.   cout << "Hello World!" << endl;
  19.   return NULL;
  20. }
  21.